home *** CD-ROM | disk | FTP | other *** search
/ Chip: 2005 Utilities / CHIP Utilities 2005.7z / CHIP Utilities 2005.iso / images / arachne.igz / arachne.img / LEVEL0 / UTILZ.CAB / bin / Allow.bat next >
DOS Batch File  |  2005-01-16  |  272b  |  14 lines

  1. @if "%debug%"=="" echo off
  2. :: Allow Begin ::
  3.  
  4. if "%1"=="" goto _start
  5. for %%i in (yes YES yeS Yes yEs yES YeS YEs) do if "%1"=="%%i" goto _start
  6. for %%i in (no NO No nO) do if "%1"=="%%i" goto _start
  7. goto _end
  8.  
  9. :_start
  10. call halt.bat %1
  11.  
  12. :_end
  13. :: Allow End ::
  14.